home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / dskut / boot.zip / BOOTMAKE.BAT < prev    next >
DOS Batch File  |  1986-01-09  |  399b  |  16 lines

  1. rem   This batch file will
  2. rem     1) assemble boot.asm
  3. rem     2) link it into boot.exe
  4. rem     3) convert it into boot.com
  5. rem     4) copy it to the boot record
  6. rem        in a diskette in drive A
  7. rem        (be prepared for that)
  8. pause  Ready?
  9. masm boot,boot.obj,nul,nul
  10. link boot,boot,con;
  11. exe2bin boot.exe boot.com
  12. debug boot.com <boot.dbg
  13. del boot.obj
  14. del boot.exe
  15. del boot.com
  16.